projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
32847b7
)
* lib-src/etags.c (Fortran_functions): Handle "elemental" functions.
author
Glenn Morris
<rgm@gnu.org>
Wed, 7 Sep 2011 07:28:05 +0000
(
00:28
-0700)
committer
Glenn Morris
<rgm@gnu.org>
Wed, 7 Sep 2011 07:28:05 +0000
(
00:28
-0700)
lib-src/ChangeLog
patch
|
blob
|
history
lib-src/etags.c
patch
|
blob
|
history
diff --git
a/lib-src/ChangeLog
b/lib-src/ChangeLog
index f6c224148aa5067fc47be24f95c6faaca85b9613..c40c7b007b9fb5586b6d05455a841f7f0acc6b88 100644
(file)
--- a/
lib-src/ChangeLog
+++ b/
lib-src/ChangeLog
@@
-1,3
+1,7
@@
+2011-09-07 Glenn Morris <rgm@gnu.org>
+
+ * etags.c (Fortran_functions): Handle "elemental" functions.
+
2011-09-07 Dieter Schuster <didischuster@arcor.de> (tiny change)
* etags.c (Fortran_functions): Handle "pure" functions. (Bug#9359)
diff --git
a/lib-src/etags.c
b/lib-src/etags.c
index 0197bbd49cc3c2fe7ff18525412ea27230d879ae..ac5ebee9b0766d05fae3e3d264028550a7d46667 100644
(file)
--- a/
lib-src/etags.c
+++ b/
lib-src/etags.c
@@
-4051,6
+4051,9
@@
Fortran_functions (FILE *inf)
if (LOOKING_AT_NOCASE (dbp, "pure"))
dbp = skip_spaces (dbp);
+ if (LOOKING_AT_NOCASE (dbp, "elemental"))
+ dbp = skip_spaces (dbp);
+
switch (lowcase (*dbp))
{
case 'i':